ClipActionNotAllowedException
| Kind of class: | class |
|---|---|
| Inherits from: | Error |
| Author: | The gotoAndPlay() Team http://www.smartfoxserver.com http://www.gotoandplay.it |
| Classpath: | com.smartfoxserver.redbox.exceptions.ClipActionNotAllowedException |
| File last modified: | Tuesday, 24 June 2008, 16:41:21 |
A RedBox exception.
Summary
Constructor
- ClipActionNotAllowedException (message:String)
- Thrown when the current user is not allowed to perform an action on a clip.
Constructor
ClipActionNotAllowedException
function ClipActionNotAllowedException (
message:String)
Thrown when the current user is not allowed to perform an action on a clip.
This exception is raised when the user tries to delete an a/v clip or update its properties not being its owner.
This exception is raised when the user tries to delete an a/v clip or update its properties not being its owner.
Parameters:
message:
the error message.
Example:
- The following example shows how to handle the "ClipActionNotAllowedException" exception.
try { avClipMan.deleteClip(clipId) } catch (err:ClipActionNotAllowedException) { trace (err.message) }